135e90a7176819ec33560924e3c4948b05c78188,portal-service/test/unit/com/liferay/portal/kernel/resiliency/spi/remote/RemoteSPITest.java,RemoteSPITest,testCall,#,144
Before Change
ConcurrentMap<String, Object> attributes =
ProcessContext.getAttributes();
SPI spi = (SPI)ReflectionTestUtil.invokeBridge(
_mockRemoteSPI, "call", new Class<?>[0]);
Assert.assertSame(spi, UnicastRemoteObject.toStub(_mockRemoteSPI));
After Change
ConcurrentMap<String, Object> attributes =
ProcessContext.getAttributes();
SPI spi = ReflectionTestUtil.invokeBridge(
_mockRemoteSPI, "call", new Class<?>[0]);
Assert.assertSame(spi, UnicastRemoteObject.toStub(_mockRemoteSPI));